home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / UTILITY / CMDED2E6.ARJ / MAKE.BAT < prev    next >
DOS Batch File  |  1992-06-30  |  415b  |  14 lines

  1. rem: For TASM.  Can also use MASM - see MAKECMD.BAT
  2. tasm cmdedit /zi/m;
  3. tasm cmdmacro /zi/m;
  4. tasm dirs /zi/m;
  5. tasm edit /zi/m;
  6. tasm history /zi/m;
  7. tasm install /zi/m;
  8. tasm strstack /zi/m;
  9. tasm utl /zi/m;
  10. rem the module `install' must be the last one in the link command!
  11. tlink /m /v cmdedit+cmdmacro+dirs+edit+history+strstack+utl+install;
  12. rem exe2bin cmdedit.exe cmdedit.com
  13. tdstrip -s -c cmdedit.exe
  14.